home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / ds3100.md / sigMach.h < prev   
C/C++ Source or Header  |  1989-07-08  |  2KB  |  44 lines

  1. /*
  2.  * sigMach.h --
  3.  *
  4.  *     Machine dependent data structures and procedure headers exported by the
  5.  *     the signal module.  These are are for the sparc hardware.
  6.  *
  7.  * Copyright (C) 1989 by Digital Equipment Corporation, Maynard MA
  8.  *
  9.  *            All Rights Reserved
  10.  *
  11.  * Permission to use, copy, modify, and distribute this software and its 
  12.  * documentation for any purpose and without fee is hereby granted, 
  13.  * provided that the above copyright notice appear in all copies and that
  14.  * both that copyright notice and this permission notice appear in 
  15.  * supporting documentation, and that the name of Digital not be
  16.  * used in advertising or publicity pertaining to distribution of the
  17.  * software without specific, written prior permission.  
  18.  *
  19.  * Digitial disclaims all warranties with regard to this software, including
  20.  * all implied warranties of merchantability and fitness.  In no event shall
  21.  * Digital be liable for any special, indirect or consequential damages or
  22.  * any damages whatsoever resulting from loss of use, data or profits,
  23.  * whether in an action of contract, negligence or other tortious action,
  24.  * arising out of or in connection with the use or performance of this
  25.  * software.
  26.  *
  27.  * $Header: /sprite/src/lib/include/ds3100.md/RCS/sigMach.h,v 1.1 89/07/08 14:56:07 nelson Exp $ SPRITE (Berkeley)
  28.  */
  29.  
  30. #ifndef _SIGMACH
  31. #define _SIGMACH
  32.  
  33. /*
  34.  * The different machine dependent codes for an arithmetic fault.
  35.  */
  36. #define SIG_OVERFLOW    1
  37.  
  38. /*
  39.  * The different machine dependent codes for an illegal instruction signal
  40.  */
  41. #define SIG_FP_EXCEPTION    4
  42.  
  43. #endif _SIGMACH
  44.